/* ==========================================================
   PANEL COMANDOS - ENCAJADO (sin salirse del cuadro)
   ========================================================== */

#eci_cmd_panel.eci-cmd-panel{
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #d7dde5;
  border-radius: 10px;
  overflow: hidden;             /* recorta dentro del panel */
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

/* SCROLL INTERNO: aquí defines el alto del panel */
#eci_cmd_panel .eci-cmd-scroll{
  max-height: 235px;            /* AJUSTA a tu cuadro (200-280) */
  overflow-y: auto;             /* scroll vertical dentro */
  overflow-x: hidden;           /* sin scroll horizontal */
}

/* Tabla: no forzar ancho */
#eci_cmd_panel table.eci-cmd-table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;          /* evita que el texto empuje el ancho */
  font-family: Arial, sans-serif;
}

/* Cabecera tabla */
#eci_cmd_panel table.eci-cmd-table thead th{
  padding: 8px 10px;
  font-size: 11px;
  color: #ffffff;
  background: #2b2f36;
  text-align: left;
  letter-spacing: .2px;
  position: sticky;             /* cabecera fija al hacer scroll */
  top: 0;
  z-index: 2;
}

/* Columnas */
#eci_cmd_panel .eci-cmd-th-a{ width: 28%; }
#eci_cmd_panel .eci-cmd-th-b{ width: 72%; }

/* Celdas */
#eci_cmd_panel table.eci-cmd-table tbody td{
  padding: 7px 10px;
  font-size: 11px;
  color: #111827;
  vertical-align: top;
  border-top: 1px solid #e6ebf1;
  line-height: 1.15rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Primera columna */
#eci_cmd_panel td.eci-cmd-td-a{
  font-weight: 700;
  color: #1f2937;
  background: #fbfcfe;
}

/* Zebra */
#eci_cmd_panel table.eci-cmd-table tbody tr:nth-child(even) td{
  background: #f8fafc;
}

/* Hover discreto */
#eci_cmd_panel table.eci-cmd-table tbody tr:hover td{
  background: #eef5ff;
}

/* Resaltados */
#eci_cmd_panel td.eci-cmd-td-b b{
  color: #0f4c81;
}

/* Responsive */
@media (max-width: 900px){
  #eci_cmd_panel .eci-cmd-scroll{ max-height: 200px; }
  #eci_cmd_panel table.eci-cmd-table tbody td{ font-size: 10.5px; }
}
